/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}
.cta-button {
    display: block;
    /*width: 100%;*/
    text-align: center;
    padding: 10px 15px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #0056b3;
}

.cta-button {
    background: #1f67ae;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.cta-button:hover {
    background: #154f88;
}

.centered-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f3f6ff;
    border-radius: 10px;
    padding: 20;
    margin: 20px auto;
    width: 80%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.centered-section a {
    text-decoration: none;
    color: #1f67ae;
    font-weight: bold;
}

.centered-section .icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.centered-section .icon img {
    height: 40px;
}

.centered-section span {
    font-size: 16px;
    text-align: center;
}

.centered-section strong {
    font-size: 18px;
    color: #000;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

@media only screen and (max-width: 768px) {
    .centered-section {
        flex-direction: column;
        width: 90%;
    }

    .centered-section .icon {
        flex-direction: row;
        gap: 15px;
        margin-bottom: 15px;
    }

    .centered-section span {
        font-size: 14px;
    }
    
}

@media (max-width: 768px) {
    .centered-section {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center the entire block */
        padding: 10px;
        width: 90%; /* Adjust width for mobile */
    }

    .centered-section .icon {
        flex-direction: row; /* Align icons and text horizontally */
        align-items: center; /* Vertically align icon and text */
        justify-content: flex-start; /* Align content to the left */
        width: 100%; /* Ensure full width for alignment */
        padding: 5px 0;
    }

    .centered-section .icon img {
        height: 30px; /* Reduce icon size for mobile */
        margin-right: 10px; /* Add spacing between icon and text */
    }

    .centered-section span, 
    .centered-section a {
        text-align: left; /* Align text to the left */
        font-size: 18px; /* Adjust font size */
    }
}






        

